/* ===================================
FINANCIAL SOLUTIONS
ULTRA LUXURY BLOG POST CSS
=================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

background:
linear-gradient(
135deg,
#eaf9ff,
#dff6ff,
#f5fcff
);

color:#071a2f;

min-height:100vh;
}

/* MAIN CONTAINER */

.blog-container{

width:92%;

max-width:1300px;

margin:60px auto;
}

/* POST CARD */

.blog-post{

background:white;

padding:50px;

border-radius:35px;

box-shadow:
0 20px 60px rgba(0,0,0,.08);
}

/* TITLE */

.blog-post h1{

font-size:58px;

font-weight:800;

line-height:1.2;

text-align:center;

margin-bottom:30px;

background:
linear-gradient(
135deg,
#00c896,
#0066ff,
#d4af37
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* AUTHOR */

.author-box{

display:flex;

align-items:center;

gap:20px;

padding:25px;

background:
rgba(255,255,255,.8);

border:
1px solid rgba(0,102,255,.08);

border-radius:25px;

margin-bottom:35px;

box-shadow:
0 10px 25px rgba(0,0,0,.05);
}

.author-box img{

width:90px;
height:90px;

border-radius:50%;

object-fit:cover;

border:4px solid #00ffd5;
}

.author-box h3{

font-size:22px;
margin-bottom:5px;
}

.author-box a{

text-decoration:none;
color:#071a2f;
}

.author-box p{

color:#64748b;
}

/* FEATURE IMAGE */

.featured-image{

width:100%;

border-radius:30px;

margin:30px 0;

box-shadow:
0 25px 60px rgba(0,0,0,.12);

transition:.4s;
}

.featured-image:hover{

transform:scale(1.02);
}

/* DESCRIPTION */

.blog-description{

font-size:22px;

line-height:1.9;

font-weight:500;

color:#355070;

padding:25px;

background:#f8fcff;

border-left:5px solid #00c896;

border-radius:20px;

margin-bottom:30px;
}

/* CONTENT */

.blog-content{

font-size:19px;

line-height:2;

color:#1e293b;

padding:35px;

background:white;

border-radius:25px;

box-shadow:
0 10px 25px rgba(0,0,0,.04);
}

/* META */

.blog-meta{

display:flex;

justify-content:center;

gap:25px;

flex-wrap:wrap;

margin-top:40px;
}

.blog-meta span{

background:white;

padding:12px 22px;

border-radius:50px;

font-weight:600;

box-shadow:
0 10px 25px rgba(0,0,0,.08);
}

/* SOCIAL */

.social-actions{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

margin:45px 0;
}

.social-actions button{

padding:15px 28px;

border:none;

border-radius:50px;

background:
linear-gradient(
135deg,
#00c896,
#0066ff
);

color:white;

font-size:16px;

font-weight:600;

cursor:pointer;

transition:.3s;
}

.social-actions button:hover{

transform:
translateY(-5px);

box-shadow:
0 15px 35px rgba(0,102,255,.25);
}

/* SHARE MENU */

.share-dropdown{

position:relative;
}

.share-menu{

display:none;

position:absolute;

top:60px;

left:50%;

transform:translateX(-50%);

background:white;

border-radius:18px;

overflow:hidden;

min-width:180px;

box-shadow:
0 15px 35px rgba(0,0,0,.15);

z-index:999;
}

.share-menu a{

display:block;

padding:15px 20px;

text-decoration:none;

color:#071a2f;

font-weight:600;
}

.share-menu a:hover{

background:#00c896;

color:white;
}

/* COMMENTS */

.comments-section{

margin-top:50px;

background:white;

padding:40px;

border-radius:30px;

box-shadow:
0 15px 40px rgba(0,0,0,.08);
}

.comments-section h2{

font-size:36px;

margin-bottom:25px;
}

.comments-section textarea{

width:100%;

height:150px;

padding:20px;

border-radius:20px;

border:1px solid #ddd;

outline:none;

resize:none;

margin-bottom:20px;
}

.comments-section button{

padding:14px 28px;

border:none;

border-radius:50px;

background:
linear-gradient(
135deg,
#00c896,
#0066ff
);

color:white;

font-weight:600;

cursor:pointer;
}

/* COMMENT CARD */

.comment-box{

padding:22px;

background:#f8fafc;

border-left:5px solid #00c896;

border-radius:18px;

margin-bottom:20px;
}

.comment-box h4{

margin-bottom:10px;
}

.comment-box small{

color:#64748b;
margin-left:10px;
}

/* RELATED */

.related-blogs{

margin-top:70px;
}

.related-blogs h2{

font-size:42px;

text-align:center;

margin-bottom:40px;

color:#071a2f;
}

.related-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));

gap:30px;
}

.related-card{

background:white;

border-radius:25px;

overflow:hidden;

box-shadow:
0 15px 40px rgba(0,0,0,.08);

transition:.4s;
}

.related-card:hover{

transform:
translateY(-10px);

box-shadow:
0 25px 50px rgba(0,102,255,.15);
}

.related-card img{

width:100%;

height:220px;

object-fit:cover;
}

.related-card h3{

padding:20px;

font-size:22px;
}

.related-card a{

display:inline-block;

margin:0 20px 20px;

text-decoration:none;

padding:12px 22px;

border-radius:50px;

background:
linear-gradient(
135deg,
#00c896,
#0066ff
);

color:white;

font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

.blog-post{
padding:25px;
}

.blog-post h1{
font-size:34px;
}

.author-box{
flex-direction:column;
text-align:center;
}

.blog-content{
padding:20px;
font-size:17px;
}

.related-grid{
grid-template-columns:1fr;
}

.social-actions{
flex-direction:column;
}

}
/* =========================
   PREMIUM BLOG POST
========================= */

body{
    background:#f4f8fc;
}

.blog-container{
    max-width:1200px;
    margin:50px auto;
    padding:20px;
}

.blog-post{
    background:#fff;
    border-radius:30px;
    padding:50px;
    box-shadow:
    0 15px 50px rgba(0,0,0,0.08);
}

/* TITLE */

.blog-post h1{
    font-size:48px;
    line-height:1.3;
    color:#071a2f;
    margin-bottom:30px;
}

/* AUTHOR */

.author-box{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:35px;
    padding:20px;
    background:#f8fbff;
    border-radius:20px;
}

.author-box img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #00c896;
}

.author-box h3 a{
    color:#071a2f;
    text-decoration:none;
}

.author-box p{
    color:#666;
}

/* FEATURED IMAGE */

.featured-image{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:25px;
    margin-bottom:35px;
    box-shadow:
    0 15px 35px rgba(0,0,0,0.15);
}

/* DESCRIPTION */

.blog-description{
    background:#f8fbff;
    padding:30px;
    border-left:5px solid #00c896;
    border-radius:20px;
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

/* CONTENT */

.blog-content{
    font-size:19px;
    line-height:2;
    color:#333;
}

.blog-content p{
    margin-bottom:20px;
}

/* META */

.blog-meta{
    display:flex;
    gap:25px;
    margin-top:40px;
    padding-top:25px;
    border-top:1px solid #eee;
}

/* SOCIAL BUTTONS */

.social-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:35px;
}

.social-actions button{
    padding:14px 25px;
    border:none;
    border-radius:50px;
    background:
    linear-gradient(
    135deg,
    #00c896,
    #0066ff
    );

    color:white;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.social-actions button:hover{
    transform:translateY(-4px);
}

/* COMMENTS */

.comments-section{
    margin-top:60px;
}

.comments-section h2{
    margin-bottom:25px;
}

.comments-section textarea{
    width:100%;
    min-height:130px;
    padding:18px;
    border-radius:18px;
    border:1px solid #ddd;
}

.comments-section button{
    margin-top:15px;
    padding:14px 30px;
    border:none;
    border-radius:50px;
    background:#00c896;
    color:white;
    cursor:pointer;
}

/* COMMENT CARD */

.comment-box{
    background:#f8fbff;
    padding:25px;
    border-radius:18px;
    margin-top:20px;
}

.comment-box h4{
    margin-bottom:10px;
}

/* RELATED */

.related-blogs{
    margin-top:70px;
}

.related-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.related-card{
    background:white;
    border-radius:22px;
    overflow:hidden;
    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
    transition:.3s;
}

.related-card:hover{
    transform:translateY(-10px);
}

.related-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.related-card h3{
    padding:20px;
    color:#071a2f;
}

.related-card a{
    display:block;
    padding:0 20px 20px;
    color:#0066ff;
    text-decoration:none;
    font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

    .blog-post{
        padding:25px;
    }

    .blog-post h1{
        font-size:30px;
    }

    .featured-image{
        height:250px;
    }

}
.reading-progress{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:5px;
    background:linear-gradient(
    90deg,
    #00c896,
    #0066ff
    );
    z-index:99999;
}